diff options
Diffstat (limited to 'src/app/api/product/[id]/toggle-different')
| -rw-r--r-- | src/app/api/product/[id]/toggle-different/route.tsx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/app/api/product/[id]/toggle-different/route.tsx b/src/app/api/product/[id]/toggle-different/route.tsx new file mode 100644 index 0000000..987dbf3 --- /dev/null +++ b/src/app/api/product/[id]/toggle-different/route.tsx @@ -0,0 +1,16 @@ +import { NextRequest, NextResponse } from "next/server"; +import { prisma } from "prisma/client"; + +type Params = { params: { id: string } } +export async function POST(request: NextRequest, { params }: Params) { + const intId = parseInt(params.id) + const product = await prisma.product.findUnique({ where: { id: intId } }) + const updatedProduct = await prisma.product.update({ + where: { id: intId }, + data: { + isDifferent: !product?.isDifferent + } + }) + + return NextResponse.json(updatedProduct) +}
\ No newline at end of file |
